/* ===========================
   BORDE DEL MENU DE IDIOMA
=========================== */

/* Dropdown menu */
#lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 160px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  z-index: 1000;

  opacity: 0;
  transform: scale(0.95) translateY(-4px);
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Visible state */
#lang-menu.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}


/* Contenedor Principal */
.elementor-25 {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Título Principal (H1) */
.page-header {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    border-left: 6px solid #feb01a; /* Tu color amarillo */
    padding-left: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Secciones (H2) */
.elementor-widget-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-top: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Decoración para los números de sección */
.elementor-widget-container h2::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 4px;
    background: #feb01a;
    margin-right: 10px;
    border-radius: 2px;
}

/* Párrafos */
.elementor-widget-container p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4b5563; /* Gris suave para lectura larga */
}

/* Subpuntos (H5 y H6 que usaste para la licencia) */
.elementor-widget-container h6, 
.elementor-widget-container h5 {
    font-size: 1rem;
    font-weight: 500;
    margin: 10px 0 10px 20px;
    color: #374151;
}

.elementor-widget-container h5 {
    display: list-item;
    list-style-type: lower-roman; /* i, ii, iii... */
    margin-left: 50px;
}

/* Enlaces dentro del texto */
.elementor-widget-container a {
    color: #feb01a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.elementor-widget-container a:hover {
    color: #dd9716;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        font-size: 1.8rem;
    }
    .elementor-25 {
        margin: 20px;
    }
}